lambda表達式 Python 之 for循環中的lambda 第一種 f = [lambda x: x*i for i in range(4)] (如果將x換成i,調用時候就不用傳參數,結果都為3) 對於上面 ...